From: Dan Nicolaescu Date: Wed, 9 Jan 2008 05:15:07 +0000 (+0000) Subject: * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~24755 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=15b18fea8169cce339f2f792ce1eee44d2de03e0;p=emacs.git * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b24807e36b4..eac75b01c7f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-01-09 Tom Tromey + + * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". + 2008-01-09 Glenn Morris * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 597c49aaa3f..fe441d984f7 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -485,7 +485,7 @@ REV is the revision to check out into WORKFILE." (defun vc-hg-dir-status (dir) "Return a list of conses (file . state) for DIR." (with-temp-buffer - (vc-hg-command (current-buffer) nil dir "status" "-A") + (vc-hg-command (current-buffer) nil dir "status") (goto-char (point-min)) (let ((status-char nil) (file nil)